2

我有个问题...

我有几个(2)个ViewCotroller

名字是ViewControllerDetailViewController

DetailViewController有数据(Coredata 中的关系)。

这是DetailViewController代码。

NSSet *tags = self.bookInfo.details.tags;
tagNamesArray = [[NSMutableArray alloc] initWithCapacity:tags.count];

for (Voca_Tag *tag in tags) {
    [tagNamesArray addObject:tag.mean];
}

我想tagNamesArray.countViewController.

还有,我被利用了

DetailViewController *detailViewController = [[DetailViewController alloc]init];

[detailViewController.tageNamesArray count];

它没有用。

我想在 UITableView 上使用 Count 到 cell.text。

pastebin.com/RwuR6PDt << ViewController pastebin.com/2F345vg7 << DetaulViewController

请检查...

4

2 回答 2

1

您应该编写您的委托: 在 SecondViewController.H 中:

@protocol messageDelegate <NSObject>
@optional
-(void) sendDataCount:(NSInteger) i;
@end
@interface SecondViewController : NSString
@property (nonatomic, assign) id <messageDelegate> delegate;
@end

在 SecondViewController.m 中:

-(void)readyToSend
{
    [self.delegate sendDataCount:__YOURCOUNT__];

}

在 ViewController.h 中:

@interface ViewController : UIViewController<messageDelegate>
@end

在 ViewController.m 中:在

- (void)viewDidLoad {
SecondViewController *secondViewController = [[SecondViewController alloc] init];
secondViewController.delegate = self;
}
-(void) sendDataCount:(NSInteger) i
{
    NSLog(@"Your Count  =  %d",i);
    //send Data using POST method
}

希望它会有所帮助!

于 2013-07-25T07:46:32.177 回答
0

这是因为 tafNamesArray 当时没有内存分配,因此该数组将返回 nil 并且其计数为零。

如果要获取 [tafNamesArray count ] ,首先调用初始化 tafNamesArray 的方法,例如:

   In DetailViewController
    -(void)array
    {

    NSSet *tags = self.bookInfo.details.tags;
    tagNamesArray = [[NSMutableArray alloc] initWithCapacity:tags.count];

    for (Voca_Tag *tag in tags) {
        [tagNamesArray addObject:tag.mean];
    }
    }

    then In ViewController

    call :

    DetailViewController *detailViewController = [[DetailViewController alloc]init];
//First call this method
    [detailViewController array];
//then  this line will work
     int i =   [detailViewController.tafNamesArray count];
于 2013-07-25T08:02:10.077 回答